hash/maphash.Seed.s (field)

15 uses

	hash/maphash (current package)
		maphash.go#L32: 	s uint64
		maphash.go#L44: 	state := seed.s
		maphash.go#L68: 	state := seed.s
		maphash.go#L122: 	if h.seed.s == 0 {
		maphash.go#L162: 			h.state.s = rthash(b[:bufSize], h.state.s)
		maphash.go#L189: 			h.state.s = rthashString(s[:bufSize], h.state.s)
		maphash.go#L210: 	if seed.s == 0 {
		maphash.go#L232: 	h.state.s = rthash(h.buf[:h.n], h.state.s)
		maphash.go#L245: 	return rthash(h.buf[:h.n], h.state.s)
		maphash.go#L259: 	return Seed{s: s}
		maphash_runtime.go#L51: 	s := seed.s
		maphash_runtime.go#L69: 	h.state.s = comparableHash(v, h.state)